home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
By the Book
/
Learn C++ (CodeWarrior)
/
Chap 08.01 - readMe
/
readMe.cp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-10-21
|
155 b
|
13 lines
|
[
TEXT/CWIE
]
#include <iostream.h>
#include <fstream.h>
int main()
{
ifstream readMe( "My File" );
char c;
while ( readMe.get( c ) )
cout << c;
return 0;
}